home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_tut / add.ada < prev    next >
Text File  |  1996-01-30  |  158b  |  8 lines

  1. with Text_IO; use Text_IO;
  2. procedure Add is
  3.    package My_Int_IO is new Integer_IO(Integer); use My_Int_IO;
  4. begin
  5.    Put(2 + 2);
  6.    New_Line;
  7. end Add;
  8.